home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / bbs / hunt103.zip / HUNT.ZIP / HLOCS / HMED.LOC < prev    next >
Text File  |  1996-03-03  |  6KB  |  129 lines

  1. // BASIC MEDICAL CLINIC LAYOUT  (HMEDICAL.ORG)
  2. // NOTES ON FORMAT:
  3. //   No line should be longer than 120 characters in length anywhere in here
  4. //   Standard ANSI color and graphics are allowed in location descriptions
  5. //   NAME <...> at the top of this file is currently not being used
  6. //   DESCRIPTION_NAME is the name of the area the player is shown
  7. //    - After DESCRIPTION_NAME, leave a blank space
  8. //    - Everything after the blank space to the end of the line is yours
  9. //   Start and end each location with BEGIN/END_LOCATION
  10. //   TYPE refers to the type of map location this is: MAP, SHOP, MEDICAL, etc.
  11. //    - After TYPE, leave a blank space, then the one word map location type
  12. //   COST is used if the location has some service for sale
  13. //    - After COST, leave a blank space, and have an integer
  14. //    - The integer is used differently depending on the location.
  15. //      ie: 2 per hit point per level, or 100 per level for a room
  16. //   FILE is used if a map location needs a file (ie: a shop needs a list)
  17. //    - If the type requires a file, the filename follows after a blank
  18. //   Start and end each description with BEGIN/END_DESCRIPTION
  19. //    - Everything between the start and end is displayed as is
  20. //    - To have ANSI gfx and color, just use standard ANSI format
  21. //    - Terminate each line with a standard C/R (\n); don't go past 80 columns
  22. //   Start and end each direction list with BEGIN/END_DIRECTION
  23. //    - The first character on each line represents the "direction" available
  24. //    - There should be a space followed by the a file-name and another space
  25. //    - The file-name should be that of another file like this one containing
  26. //        the description of the area a player is currently at
  27. //    - The file-name must be one word only, CAPS aren't a must but I use 'em
  28. //    - HHARD is a reserved file-name corresponding with hard-coded locations
  29. //        Don't use it unless you actually want to include this type
  30. //    - The rest of the line is the location corresponding with that direction
  31. //    - Spaces are allowed in the location name
  32.  
  33. NAME HMED
  34. //---------------------------------------------------------------------------
  35. BEGIN_LOCATION City Medical Clinic
  36. TYPE HEAL
  37. MAP HWALL.MAP
  38. COST 2
  39.  
  40. BEGIN_FIRST_DESCRIPTION
  41. You stand in line for at least an hour before making it into the clinic...
  42. END_FIRST_DESCRIPTION
  43.  
  44. BEGIN_DESCRIPTION
  45.    The South City Gate Medical Clinic is so clean and bright, it's almost
  46. blinding.  They don't have nearly enough staff to serve everyone, but they make
  47. do with what they have.
  48.    A pretty, friendly-looking female nurse with a clip-board approaches you.
  49. "Greetings exterminator.  My name's Shandra.  What can I help you with today?"
  50. END_DESCRIPTION
  51.  
  52. BEGIN_TALK_TEXT
  53.    "There are many more medical clinics throughout the city," Shandra explains,
  54. "but because of their high-risk locations, you'll find prices can be more
  55. expensive.  Remember to stock up on medkits!  They're a little more expensive
  56. than getting healed here, but you never know when you'll need them!"
  57. END_TALK_TEXT
  58.  
  59. BEGIN_DIRECTIONS
  60. [R]eturn - HWALL South Wall
  61. END_DIRECTIONS
  62.  
  63. END_LOCATION City Medical Clinic
  64.  
  65. //---------------------------------------------------------------------------
  66. BEGIN_LOCATION Bio-Med Storage
  67. TYPE HEAL
  68. MAP HBIOMED0.MAP
  69. COST 1
  70.  
  71. BEGIN_FIRST_DESCRIPTION
  72. You step over quite a few bodies to enter this room...
  73. END_FIRST_DESCRIPTION
  74.  
  75. BEGIN_DESCRIPTION
  76.    This storage room has been converted into some kind quick and cheap medical
  77. clinic.  Standing behind a fold-out table is a guy in a dirty, bloodied
  78. surgical outfit.  He's holding a double-barreled shotgun aimed directly at your
  79. head.  When he sees you're not a criminal or some weirdo, he relaxes, lowers
  80. the shotgun and says, "Hi, exterminator!  What can I get for ya?  I got it all
  81. here...  Medkits, healing gel, tablets, you name it.  I don't know how long
  82. I'll be here or how long I'll have all this great stuff so buy now.  Can't
  83. beat my prices anywhere."
  84. END_DESCRIPTION
  85.  
  86. BEGIN_TALK_TEXT
  87.    "Sure I'm a doctor!  I used to be a scientist here at Bio-Med, but things
  88. change.  You know that.  Anyway, I had access to all this great stuff and
  89. figured, 'What the hell. Why let it go to waste!'  So I'm down here now selling
  90. everything I can at dirt prices.  The shotgun's just for those 'undesirables'
  91. who think they can just take what they like.  I'm not a bad shot if I do say
  92. so myself," he says pointing to the bodies you stepped over to get in.
  93. END_TALK_TEXT
  94.  
  95. BEGIN_DIRECTIONS
  96. [R]eturn - HBIOMED Bio-Med Level 0 Hallway
  97. END_DIRECTIONS
  98.  
  99. END_LOCATION Bio-Med Storage
  100.  
  101. //---------------------------------------------------------------------------
  102. BEGIN_LOCATION Downtown City Hospital
  103. TYPE HEAL
  104. MAP HEEXPERT.MAP
  105. COST 5
  106.  
  107. BEGIN_DESCRIPTION
  108.    The Downtown City Hospital is mostly closed now.  The few remaining staff
  109. here work just for the money.  The city pays the staff well for being there,
  110. but on top of that, they like to add their own service charges also.
  111.    You stand in the emergency room among a couple of other people with a
  112. variety of injuries.  Service isn't brisk, but at least there is some help
  113. available so deep into the city.
  114. END_DESCRIPTION
  115.  
  116. BEGIN_TALK_TEXT
  117.    You go up and start conversation with one of the nurses reading a paper.
  118. After explaining who you are and what you're interested in she says, "Yeah,
  119. we're a bit more pricey than some of the other medical facilities, but so far
  120. downtown here, take it or leave it.  You got nothing else."
  121. END_TALK_TEXT
  122.  
  123. BEGIN_DIRECTIONS
  124. [R]eturn - HEEXPERT Flipped Winnebago
  125. END_DIRECTIONS
  126.  
  127. END_LOCATION Downtown City Hospital
  128.  
  129.